跳到主要内容

getLength

Returns the length if the CDocBuilderValue object is an array. Otherwise, returns 0.

Please note, that for the .docbuilder file the CDocBuilderValue.getLength method is not used.

Syntax

int getLength();

Example

Java

CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
CDocBuilderContext context = builder.getContext();
CDocBuilderValue global = context.getGlobal();
CDocBuilderValue api = global.get("Api");
CDocBuilderValue document = api.call("GetDocument");
CDocBuilderValue charts = document.call("GetAllCharts");
int length = charts.getLength();
CDocBuilder.dispose();